home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / dfpp01.zip / STATBAR.H < prev    next >
C/C++ Source or Header  |  1992-11-21  |  370b  |  24 lines

  1. // -------- statbar.h 
  2.  
  3. #ifndef STATBAR_H
  4. #define STATBAR_H
  5.  
  6. #include "textbox.h"
  7.  
  8. class StatusBar : public TextBox    {
  9.     virtual void SetColors();
  10. protected:
  11. public:
  12.     StatusBar(DFWindow *par);
  13.     ~StatusBar();
  14.     void ParentSized(int xdif, int ydif);
  15.     void ClockTick();
  16.     void StatusMessage(String& Msg);
  17.     Bool SetFocus() { return False; }
  18. };
  19.  
  20. #endif
  21.  
  22.  
  23.  
  24.